home *** CD-ROM | disk | FTP | other *** search
/ Champak 50 / Volume 50 - JOGO DISK .iso / Games / maya_miguel_global_groovin.swf / scripts / DefineSprite_168 / frame_1 / DoAction.as
Text File  |  2007-09-27  |  690b  |  41 lines

  1. fullheight = 143;
  2. top = vol._y;
  3. left = vol._x;
  4. right = vol._x;
  5. bottom = vol._y + fullheight;
  6. level = 143;
  7. vol.onPress = function()
  8. {
  9.    startDrag("vol",0,left,top,right,bottom);
  10.    dragging = true;
  11. };
  12. vol.onRelease = function()
  13. {
  14.    stopDrag();
  15.    dragging = false;
  16. };
  17. vol.onReleaseOutside = function()
  18. {
  19.    dragging = false;
  20. };
  21. this.onEnterFrame = function()
  22. {
  23.    if(dragging)
  24.    {
  25.       level = fullheight - (vol._y - top);
  26.    }
  27.    else if(level > fullheight)
  28.    {
  29.       level = fullheight;
  30.    }
  31.    else if(level < 0)
  32.    {
  33.       level = 0;
  34.    }
  35.    else
  36.    {
  37.       vol._y = - level + fullheight + top;
  38.    }
  39.    _root.GlobalSound.setVolume(level);
  40. };
  41.